@微光
3年前 提问
1个回答

python输出换行

Simon
3年前

Python要使输出的内容实现换行可以使用换行符,换行符一般使用反斜杠+n来表示,一般写为“\n”,如果是在代码中换行的话直接“空格+\”就可以实现在代码中换行,如果是字符串中换行则需要使用三个单引号或者三个双引号都可以实现。

  • 输出内容换行:
print(hello world\n hello world\n hello world\n)
  • 代码中直接换行:
a = 1
b = 2
print(a + \
    b)
  • 字符串内换行:

```
print(“””hello
world”””)